home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
fractal
/
kaos.lha
/
complib
/
free_dvector.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-01-26
|
139 b
|
11 lines
/*
### freem memory for 1-d double precision array ###
*/
void free_dvector(v,nl,nh)
double *v;
int nl,nh;
{
free((char *) (v + nl));
}